home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / prgs / externfunc / string.c < prev    next >
Encoding:
Text File  |  1996-08-28  |  101 b   |  10 lines

  1. /*
  2. ** Return a string to an ACE program.
  3. */
  4. char buf[] = "Hello ACE!";
  5.  
  6. char *foo()
  7. {
  8.     return buf;
  9. }
  10.